package com.tdd;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

public class HpStackTest {
	@Test
	public void newStackAlwaysHasAValue() {
		HpStack stack = new HpStack();
		assertEquals(0, stack.peek());
	}
}
